home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / rlcompleter.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  6KB  |  173 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''Word completion for GNU readline 2.0.
  5.  
  6. This requires the latest extension to the readline module. The completer
  7. completes keywords, built-ins and globals in a selectable namespace (which
  8. defaults to __main__); when completing NAME.NAME..., it evaluates (!) the
  9. expression up to the last dot and completes its attributes.
  10.  
  11. It\'s very cool to do "import sys" type "sys.", hit the
  12. completion key (twice), and see the list of names defined by the
  13. sys module!
  14.  
  15. Tip: to use the tab key as the completion key, call
  16.  
  17.     readline.parse_and_bind("tab: complete")
  18.  
  19. Notes:
  20.  
  21. - Exceptions raised by the completer function are *ignored* (and
  22. generally cause the completion to fail).  This is a feature -- since
  23. readline sets the tty device in raw (or cbreak) mode, printing a
  24. traceback wouldn\'t work well without some complicated hoopla to save,
  25. reset and restore the tty state.
  26.  
  27. - The evaluation of the NAME.NAME... form may cause arbitrary
  28. application defined code to be executed if an object with a
  29. __getattr__ hook is found.  Since it is the responsibility of the
  30. application (or the user) to enable this feature, I consider this an
  31. acceptable risk.  More complicated expressions (e.g. function calls or
  32. indexing operations) are *not* evaluated.
  33.  
  34. - GNU readline is also used by the built-in functions input() and
  35. raw_input(), and thus these also benefit/suffer from the completer
  36. features.  Clearly an interactive application can benefit by
  37. specifying its own completer function and using raw_input() for all
  38. its input.
  39.  
  40. - When the original stdin is not a tty device, GNU readline is never
  41. used, and this module (and the readline module) are silently inactive.
  42.  
  43. '''
  44. import __builtin__
  45. import __main__
  46. __all__ = [
  47.     'Completer']
  48.  
  49. class Completer:
  50.     
  51.     def __init__(self, namespace = None):
  52.         '''Create a new completer for the command line.
  53.  
  54.         Completer([namespace]) -> completer instance.
  55.  
  56.         If unspecified, the default namespace where completions are performed
  57.         is __main__ (technically, __main__.__dict__). Namespaces should be
  58.         given as dictionaries.
  59.  
  60.         Completer instances should be used as the completion mechanism of
  61.         readline via the set_completer() call:
  62.  
  63.         readline.set_completer(Completer(my_namespace).complete)
  64.         '''
  65.         if namespace and not isinstance(namespace, dict):
  66.             raise TypeError, 'namespace must be a dictionary'
  67.         
  68.         if namespace is None:
  69.             self.use_main_ns = 1
  70.         else:
  71.             self.use_main_ns = 0
  72.             self.namespace = namespace
  73.  
  74.     
  75.     def complete(self, text, state):
  76.         """Return the next possible completion for 'text'.
  77.  
  78.         This is called successively with state == 0, 1, 2, ... until it
  79.         returns None.  The completion should begin with 'text'.
  80.  
  81.         """
  82.         if self.use_main_ns:
  83.             self.namespace = __main__.__dict__
  84.         
  85.         if state == 0:
  86.             if '.' in text:
  87.                 self.matches = self.attr_matches(text)
  88.             else:
  89.                 self.matches = self.global_matches(text)
  90.         
  91.         
  92.         try:
  93.             return self.matches[state]
  94.         except IndexError:
  95.             return None
  96.  
  97.  
  98.     
  99.     def global_matches(self, text):
  100.         '''Compute matches when text is a simple name.
  101.  
  102.         Return a list of all keywords, built-in functions and names currently
  103.         defined in self.namespace that match.
  104.  
  105.         '''
  106.         import keyword as keyword
  107.         matches = []
  108.         n = len(text)
  109.         for list in [
  110.             keyword.kwlist,
  111.             __builtin__.__dict__,
  112.             self.namespace]:
  113.             for word in list:
  114.                 if word[:n] == text and word != '__builtins__':
  115.                     matches.append(word)
  116.                     continue
  117.             
  118.         
  119.         return matches
  120.  
  121.     
  122.     def attr_matches(self, text):
  123.         '''Compute matches when text contains a dot.
  124.  
  125.         Assuming the text is of the form NAME.NAME....[NAME], and is
  126.         evaluatable in self.namespace, it will be evaluated and its attributes
  127.         (as revealed by dir()) are used as possible completions.  (For class
  128.         instances, class members are also considered.)
  129.  
  130.         WARNING: this can still invoke arbitrary C code, if an object
  131.         with a __getattr__ hook is evaluated.
  132.  
  133.         '''
  134.         import re as re
  135.         m = re.match('(\\w+(\\.\\w+)*)\\.(\\w*)', text)
  136.         if not m:
  137.             return []
  138.         
  139.         (expr, attr) = m.group(1, 3)
  140.         object = eval(expr, self.namespace)
  141.         words = dir(object)
  142.         if hasattr(object, '__class__'):
  143.             words.append('__class__')
  144.             words = words + get_class_members(object.__class__)
  145.         
  146.         matches = []
  147.         n = len(attr)
  148.         for word in words:
  149.             if word[:n] == attr and word != '__builtins__':
  150.                 matches.append('%s.%s' % (expr, word))
  151.                 continue
  152.         
  153.         return matches
  154.  
  155.  
  156.  
  157. def get_class_members(klass):
  158.     ret = dir(klass)
  159.     if hasattr(klass, '__bases__'):
  160.         for base in klass.__bases__:
  161.             ret = ret + get_class_members(base)
  162.         
  163.     
  164.     return ret
  165.  
  166.  
  167. try:
  168.     import readline
  169. except ImportError:
  170.     pass
  171.  
  172. readline.set_completer(Completer().complete)
  173.